home *** CD-ROM | disk | FTP | other *** search
/ Dream 55 / Amiga_Dream_55.iso / RISCOS / APPS / TEXT / PDF / PDF2PS.ZIP / PDF to PS / xpdf / h / Flags < prev    next >
Text File  |  1996-05-24  |  448b  |  22 lines

  1. //========================================================================
  2. //
  3. // Flags.h
  4. //
  5. // Copyright 1996 Derek B. Noonburg
  6. //
  7. //========================================================================
  8.  
  9. #ifndef FLAGS_H
  10. #define FLAGS_H
  11.  
  12. // Size of RGB color cube.
  13. extern int rgbCubeSize;
  14.  
  15. // Print commands as they're executed.
  16. extern GBool printCommands;
  17.  
  18. // Send error messages to /dev/tty instead of stderr.
  19. extern GBool errorsToTTY;
  20.  
  21. #endif
  22.